home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_023 / ver30 / tty / ansi / ttydef.h < prev    next >
Text File  |  1992-05-06  |  1KB  |  57 lines

  1. /*
  2.  * Name:    MicroEMACS
  3.  *        Digital ANSI terminal header file
  4.  * Version:    29
  5.  * Last edit:    05-Feb-86
  6.  * By:        rex::conroy
  7.  *        decvax!decwrl!dec-rhea!dec-rex!conroy
  8.  */
  9. #define    GOSLING    1            /* Compile in fancy display.    */
  10. #define    MEMMAP    0            /* Not memory mapped video.    */
  11.  
  12. /*
  13.  * Yes Bob, it's wrong for you.
  14.  */
  15. #define    NROW    66            /* Rows.            */
  16. #define    NCOL    132            /* Columns.            */
  17.  
  18. /*
  19.  * Special keys, as on the LK201, which is
  20.  * a superset of the VT100. Originally I tried to keep the
  21.  * numbers in LK201 escape sequence code, but it became too much
  22.  * of a pain because of the keycodes greater than 31. 
  23.  * The codes are all just redefinitions for the standard extra
  24.  * key codes. Using the standard names ensures that the
  25.  * LK201 codes land in the right place.
  26.  */
  27. #define    KUP    K01
  28. #define    KDOWN    K02
  29. #define    KLEFT    K03
  30. #define    KRIGHT    K04
  31. #define    KFIND    K05
  32. #define    KINSERT    K06
  33. #define    KREMOVE    K07
  34. #define    KSELECT    K08
  35. #define    KPREV    K09
  36. #define    KNEXT    K0A
  37. #define    KF4    K0B
  38. #define    KF6    K0C
  39. #define    KF7    K0D
  40. #define    KF8    K0E
  41. #define    KF9    K0F
  42. #define    KF10    K10
  43. #define    KF11    K11
  44. #define    KF12    K12
  45. #define    KF13    K13
  46. #define    KF14    K14
  47. #define    KHELP    K15
  48. #define    KDO    K16
  49. #define    KF17    K17
  50. #define    KF18    K18
  51. #define    KF19    K19
  52. #define    KF20    K1A
  53. #define    KPF1    K1B
  54. #define    KPF2    K1C
  55. #define    KPF3    K1D
  56. #define    KPF4    K1E
  57.